From: Colin Walters Date: Tue, 21 Mar 2017 19:14:06 +0000 (-0400) Subject: build: Quiet automake warning for bupsplit X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~39^2~41 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/?a=commitdiff_plain;h=4ebe1ee94b9e59b79950ce53619fcc3497ea133b;p=ostree.git build: Quiet automake warning for bupsplit Use `_SRCS` and not `_SOURCES`, the latter of which makes automake assume there's something for it to do. Closes: #749 Approved by: jlebon --- diff --git a/Makefile-libostree.am b/Makefile-libostree.am index 15711dc9..192db36e 100644 --- a/Makefile-libostree.am +++ b/Makefile-libostree.am @@ -24,9 +24,9 @@ noinst_LTLIBRARIES += libostree-kernel-args.la if ENABLE_RUST bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a -BUPSPLIT_RUST_SOURCES = rust/src/bupsplit.rs -EXTRA_DIST += $(BUPSPLIT_RUST_SOURCES) -$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SOURCES) +BUPSPLIT_RUST_SRCS = rust/src/bupsplit.rs +EXTRA_DIST += $(BUPSPLIT_RUST_SRCS) +$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SRCS) cd $(top_srcdir)/rust && CARGO_TARGET_DIR=@abs_top_builddir@/target cargo build --verbose $(CARGO_RELEASE_ARGS) else bupsplitpath = libbupsplit.la